/* loader */
#loader {
    background: #fff;
    width: 100%;
    position: relative;
    height: 100vh;
  }
  
  .mixblend {
    animation: animate 2s;
    height: 100%;
    /* background: linear-gradient(to bottom , #0C3A5B , #b9d7ed ,  #5d9dcc); */
    background: linear-gradient(#0C3A5B, transparent);
  
    /* transition: all 0.3s; */
    transition: all 30s;
    width: 0;
  }

  
  .text {
    position: absolute;
    font-family: Arial;
    color: white;
    left: 50%;
    top: 50%;
    mix-blend-mode: difference;
    transform: translateY(-50%) translateX(-50%);
    font-size:5rem;
  }

  
  @keyframes animate 
  {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }

  /* p
{
    color: Pink; 
    font-family: "Courier";
    font-size: 20px;
    margin: 10px 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 30em;
    animation: type 4s steps(60, end); 
  }
  
  @keyframes type{ 
    from { width: 0; } 
  } 
   */